home *** CD-ROM | disk | FTP | other *** search
/ American History: Interactive Maps & User's Guide / American History: Interactive Maps & User's Guide.iso / pc / Start.dxr / 00005.ls < prev    next >
Encoding:
Text File  |  2000-01-25  |  340 b   |  14 lines

  1. on CheckDrive weirdfile
  2.   repeat with i = 90 down to 66
  3.     set drive to numToChar(i)
  4.     set thisPath to string(drive & ":\" & weirdfile)
  5.     if FileExists(thisPath) = 0 then
  6.       set myFile to 0
  7.       return drive & ":"
  8.       exit
  9.     end if
  10.   end repeat
  11.   alert("You must insert the HRW_IMAPS CD-ROM to run this program.")
  12.   quit()
  13. end
  14.